/*--Initial------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.main-head{
    display:flex;
}
#help-center-body{
    background-color:var(--background-gray-1);
}

/*--Contact Support----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.support-contact{
    max-width:calc(100% - 2rem);
    transform:translate(-50%);
    color:var(--dark-blue);
    margin-bottom:2rem;
    padding-top:2rem;
    margin-left:50%;
    width:60rem;
}
.support-contact-title{
    justify-content:center;
    align-items:center;
    text-align:center;
    display:flex;

    font-size:2.5rem;
    font-weight:600;
    width:100%;
}
.support-contact-email{
    justify-content:center;
    align-items:center;
    display:flex;

    margin-top:1rem;
    font-size:1.25rem;
    width:100%;
}
.support-contatc-email-title{
    margin-right:0.25rem;
    font-weight:bold;
}

/*--Frequently Asked Questions-----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.faq{
    padding-bottom:3rem;
    padding-top:3rem;
    width:100%;
}
.faq-title{
    transform:translate(-50%);
    color:var(--dark-blue);
    margin-bottom:2rem;
    font-size:2.5rem;
    margin-left:50%;
    font-weight:600;
    width:60rem;
    max-width:calc(100% - 2rem);

    justify-content:center;
    align-items:center;
    text-align:center;
    display:flex;
}
.faq-text{
    transform:translate(-50%);
    color:var(--dark-blue);
    margin-bottom:5rem;
    font-size:1.25rem;
    margin-left:50%;
    width:60rem;
    max-width:calc(100% - 2rem);

    justify-content:center;
    align-items:center;
    text-align:center;
    display:flex;
}
.faq-holer{
    transform:translate(-50%);
    width:calc(100% - 4rem);
    margin-left:50%;
    max-width:60rem;
}
.faq-element{
    background-color:var(--background-white);
    width:calc(100% - 2rem);
    color:var(--dark-blue);
    border-radius:1rem;
    margin-bottom:1rem;
    padding:1rem;
}
.faq-element-head{
    justify-content:flex-start;
    align-items:center;
    display:flex;

    position:relative;
    height:2rem;
    width:100%;
}
.faq-question{
    width:calc(100% - 4rem);
    font-weight:bold;
    height:100%;

    justify-content:flex-start;
    align-items:center;
    display:flex;
}
.faq-button{
    position:absolute;
    right:0px;
    top:0px;

    aspect-ratio:auto;
    padding:0px;
    height:2rem;
    width:2rem;

    background-position:center center;
    background-repeat:no-repeat;
    background-size:50%;
}
.faq-button-plus{
    background-image:url("../assets/icons/plus\ 2.png");
    border:1px solid var(--background-white);
}
.faq-button-minus{
    background-image:url("../assets/icons/minus.png");
    border:1px solid var(--background-white);
    display:none;
}
.faq-element-body{
    background-color:var(--background-white);
    transform-origin:center top;
    transform:scaleY(0);
    margin-top:1rem;
    display:none;
    height:0px;
}

@keyframes expand-faq-body{
    from {transform:scaleY(0);}
    to   {transform:scaleY(1); height:auto;}
}
@keyframes hide-faq-body{
    from {transform:scaleY(1);}
    to   {transform:scaleY(0); height:0px;}
}
